home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 27 / Mac Magazin and MacEasy Magazine CD - Issue 27.iso / Grafik & Text / Sans-Faute⁄Grammaire ƒ / Adaptateurs / spécial HyperCard / Sources des scripts (anglais) / Vérif. HC Champs next >
Text File  |  1996-02-20  |  334b  |  14 lines

  1. tell application "HyperCard 2.3"
  2.     activate current stack
  3.     set num to 1
  4.     repeat number of card field times
  5.         set texttoCheck to card field num as styled text
  6.         tell application "Sans-Faute/Grammaire 2"
  7.             set textchecked to Checking texttoCheck
  8.         end tell
  9.         set card field num to textchecked
  10.         set num to num + 1
  11.     end repeat
  12. end tell
  13.  
  14.